home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef __STAT__
- #define __STAT__
-
- #include <Types.h>
- #include <Files.h>
- #include <string.h>
- #include <Strings.h>
- #include <errno.h>
-
- #define S_IFMT 0170000 /* type of file */
- #define S_IFDIR 0040000 /* directory */
- #define S_IFREG 0100000
- #define S_IFLNK 0120000
-
- struct stat {
- unsigned short st_mode;
- unsigned long st_size;
- unsigned long st_mtime;
- };
-
- extern int stat(char *fname, struct stat *buf);
- extern Boolean touchup(char *filename);
-
- #endif